Package-level declarations
Types
This is the base class for all cancellable events provided by the Weave Loader, extending Event.
This cancellable event is called when your client receives a chat message from the server.
This cancellable event is called when your client sends a chat message to the server.
This event is called when an entity is added to or removed from the world.
This cancellable event is called when a Gui Screen is opened.
Keyboard Events are called when a key is pressed or released while currentScreen is null
.
This cancellable event is called when a mouse action is performed.
This event is called when a player is added or removed from the player list.
This event is called when the HUD (game overlay) is being rendered.
Cancellable event, called in net.minecraft.client.renderer.EntityRenderer.renderWorldPass in the event that your hand is rendered (crazy right).
This event is called when an entity is rendered.
Non-cancellable, called in net.minecraft.client.renderer.EntityRenderer.renderWorldPass after the world is rendered. It is also called few lines before RenderHandEvent.
Non-cancellable event, called at the head of net.minecraft.client.multiplayer.GuiConnecting.connect, therefore, in the event that the player connects to a server, this event is called along-side the player clicking the connect to server button.
Non-cancellable event, Called in correspondence with net.minecraft.client.Minecraft.shutdownMinecraftApplet. Therefore, ShutdownEvent is called by the EventBus only in the event that the client is being shut down.
This is the base class for a Tick Event. Tick Events can be Pre and Post, but you will never receive a base Tick Event. These are each called every game tick, or every 50/timer
milliseconds (every 1/20th of a second at timer 1
). The game's timer speed will never change (unless modified by cheats), so it is safe to assume that it is 1
.